home *** CD-ROM | disk | FTP | other *** search
/ Aminet 25 / Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso / Aminet / game / shoot / ADoom_src_1_2.lha / ADoom_src / Graffiti_protos.h < prev    next >
C/C++ Source or Header  |  1998-02-21  |  354b  |  18 lines

  1. #ifndef LIB_PROTOS_H
  2. #define LIB_PROTOS_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. struct GRF_Screen* OpenChunkyScreen(int);
  9. void       CloseChunkyScreen(struct GRF_Screen* GrfStr);
  10. void        SetChunkyPalette(struct GRF_Screen* GrfStr,long *pal);
  11. void        CopyChunkyScreen(struct GRF_Screen* GrfStr,char *pic);
  12.  
  13. #ifdef __cplusplus
  14. };
  15. #endif
  16.  
  17. #endif
  18.